Welcome![Sign In][Sign Up]
Location:
Search - generator number

Search list

[Communicationtriphace

Description: 基于可编程逻辑器件CPLD和直接数字频率合成技术(DDS)的三相多波形函数发生器-based CPLD and direct digital frequency synthesis (DDS) over the three-phase waveforms letter Number Generator
Platform: | Size: 92729 | Author: liujl | Hits:

[OS Developchulijidiaodu_111

Description: 处理机调度,编写一个进程调度程序,允许多个进程共行的进程调度程序。   进程调度算法:采用最高优先数优先的调度算法(即把处理机分配给优先数最高的进程)和先来先服务算法。   每个进程有一个进程控制块(PCB)表示。进程控制块可以包含如下信息:进程名、优先数、到达时间、需要运行时间、已用CPU时间、进程状态等等。   进程的优先数及需要的运行时间可以事先人为地指定(也可以由随机数产生)。进程的到达时间为输入进程的时间。   进程的运行时间以时间片为单位进行计算。   每个进程的状态可以是就绪 W(Wait)、运行R(Run)、或完成F(Finish)三种状态之一。   就绪进程获得 CPU后都只能运行一个时间片。用已占用CPU时间加1来表示。   如果运行一个时间片后,进程的已占用 CPU时间已达到所需要的运行时间,则撤消该进程,如果运行一个时间片后进程的已占用CPU时间还未达所需要的运行时间,也就是进程还需要继续运行,此时应将进程的优先数减1(即降低一级),然后把它插入就绪队列等待CPU。   每进行一次调度程序都打印一次运行进程、就绪队列、以及各个进程的 PCB,以便进行检查。    重复以上过程,直到所要进程都完成为止 -processor scheduling, the preparation of a process scheduling procedures, allowing a total of more than process the process scheduler. Process scheduling algorithm : Highest priority for priority scheduling algorithm (namely processors allocated to the highest priority in the process) and a first-come first-service algorithm . Each process is a process control block (PCB) said. Process control block may contain the following information : process, and a number of priority, arriving in time, the running time, CPU has spent time, the process of the state and so on. Several priorities for the process of the operation and needs time to be designated prior to artificially (and also by the random number generator). The arrival process for the importation process of time. The process of running t
Platform: | Size: 101345 | Author: 王山 | Hits:

[OS programMTRandom

Description: Mersenne Twister Pseudo-Random Number Generator -MT Pseudo-Random Number Ge nerator
Platform: | Size: 19874 | Author: richard | Hits:

[Other resourceCommonArithmetic

Description: 常用算法大合集; 包括插值、查找、常微分方程组求解、多项工与连分式函数计算、非线性方程与方程组求解、复数运算、汉字操作、基本图形操作、极值问题、矩阵特征值与特征向量的计算、矩阵运算、拟合与逼近、排序、数据处理与回归分析、数学变换与滤波、数值积分、随机数产生、特征函数、图形模式下读写屏幕象点、线性代数方程组求解等C语言算法-algorithms big Collection; Including interpolation, locate, ordinary differential equations to solve a number of public and even fractional function, nonlinear equations and equation solving complex operations Chinese operation, the basic graphics operation, Extreme, Matrix eigenvalues and eigenvectors calculated matrix calculation, fitting and approximation, scheduling, data processing and regression analysis. mathematical transformation and filtering, numerical integration, Random Number Generator, characteristic function, graphics mode screen like reading and writing, linear algebraic equations, such as C language algorithms
Platform: | Size: 274773 | Author: 狼夜行 | Hits:

[OS programFCFS_LRU_OPT

Description: 模拟操作系统的页面置换1、 掌握操作系统的页面置换过程,加深理解页式虚拟存储器的实现原理。 2、 掌握用随机数生成满足一定条件的指令地址流的方法。 3、 掌握页面置换的模拟方法。 -simulation systems of a replacement pages, master pages operating system replacement process deepen our understanding of virtual memory pages of illustrations. 2, master used random number generator to meet certain conditions, the directive addresses flow method. 3, master pages replacement of simulation methods.
Platform: | Size: 13854 | Author: Solo | Hits:

[Other resourceerjinzhibianmaGA

Description: 生成0到1之间的一个随机数,因为利用浮点型生成器,所以准确到小数点后6位-0-1 generated among a random number, because the use of floating-point type generator, so accurate to six decimal places
Platform: | Size: 5475 | Author: 马飞 | Hits:

[Windows DevelopFYPrangen

Description: 簡單易用random number generator-easy and simple random number generator
Platform: | Size: 5775 | Author: Steve | Hits:

[Other resourcerng

Description: 以前在网上搜到的一个随机数发生器,支持常用分布的随机数发生-found on the Web to a random number generator, used to support the distribution of random occurrence
Platform: | Size: 5156 | Author: 江健 | Hits:

[OS Developyemianguanli

Description: 题目:设计一个请求页式存储管理方案,并编写模拟程序实现 具体要求: 1、产生一个需要访问的指令地址流,为不失一般性,可以适当地(用人工指定地方法或用随机数产生器)生成这个序列,使得 50%的指令是顺序执行的。25%的指令均匀地散布在前地址部分,25%的地址是均匀地散布在后地址部分 2、 页面淘汰算法采用 FIFO页面淘汰算法,并且在淘汰一页时,只将该页在页表中抹去。而不再判断它是否被改写过,也不将它写回到辅存 3、产生一个需要访问的指令地址流;指定合适的页面尺寸(例如以1K或2K为1页;指定内存页表的最大长度,并对页表进行初始化 4、每访问一个地址时,首先要计算该地址所在的页的页号,然后查页表,判断该页是否在主存。如果该页已在主存,则打印页表情况;如果该页不在主存且页表未满,则调入一页并打印页表情况;如果该页不在主存且页表已满,则按 FIFO页面淘汰算法淘汰一页后调入所需的页,打印页表情况 。逐个地址访问,直到所有地址访问完毕 -topics : design a request page memory management program, and the simulation program specific requirements : 1. have a need to visit the directive addresses flow, without loss of generality. be appropriate (to use artificial methods specified or random number generator) to form the sequence, makes 50% of the order was the order of implementation. 25% of orders evenly spread address some of the former and 25% of the addresses are evenly spread in the latter part two addresses. The algorithm uses pages out pages out of FIFO algorithm, and eliminate one, the only page in the page table to erase. No longer judge whether it be redrafted, it was not to return to the three auxiliary depositors, have a need to visit the directive addresses flow; designate the appropriate size of the page (for exam
Platform: | Size: 2884 | Author: 周子藤 | Hits:

[Mathimatics-Numerical algorithmsElasticNet

Description: 使用到的参数跟谈到弹性网络的那一章里头所讲的是一样的, ke 则是终止条件。如果 step 被打勾,则程式在每一步之间会暂停 100毫秒(或其他使用者输入的数值)。如果 Random 被打勾,则程式会以系统时间作为乱数产生器的种子数,否则,就以使用者输入的数( Random 右边那一格)为种子数。 你可以利用 load 来载入推销员问题档与其最佳解,如此便可比较弹性网络所找出来的解与最佳解差了多少。 Central, Radius, and Error 这三个参数的前两个,只影响弹性网络的起使位置和大小,对求解没有影响。第三个参数代表城市与网络点之间的容忍距离,也就是说,如果某城市与某网络点之间的距离,小于容忍距离,那就把这个城市当成是被该网络点所拜访。 按下小 w按钮会将目前的结果与参数值写到“en.out”这个档案。使得我们可以很方便地来比较不同参数的效果。 -use to turn the parameters of the network flexibility chapter Erlitou have said are the same, ke is the termination conditions. If the step was ticking, every step of the program will be suspended between one hundred milliseconds (or other user input value). If Random was ticking, the program will be the system time as the Random Number Generator the seeds, otherwise, Take the user input (which Random right field) for seeds. You can use load to stall contained salesman problem with the optimal solution, so can be more flexible network to find the best solution and the deficit with a number of questions. Central, Radius, and Error these three parameters of the former two, flexible network affects only the starting position and size so that the solution will not be affected. The third parame
Platform: | Size: 39690 | Author: 林尚义 | Hits:

[JSP/JavaPersonAuth

Description: 基于java 的号码生成器,在Jbuilder 2005中调试-based on java number generator, which in Jbuilder 2005 Debugging
Platform: | Size: 152047 | Author: 刘力 | Hits:

[Other resourceserial_produce

Description: 设计一个能够自启动的24-1的伪随机码(111101011001000)发生器。 设计一个序列信号发生器,产生一个011100110011序列码。 实现序列1110100。测试序列码波形 个人比较欣赏第二种方法 -to design an 24-1 since the start of the pseudo-random number (111101011001000) generator. Design of a signal sequence generator to produce a sequence code 011100110011. Implementation sequence 1110100. Test sequence code waveform personally appreciate the second method
Platform: | Size: 53583 | Author: 那锋 | Hits:

[Mathimatics-Numerical algorithmsrandomNumalgorithm

Description: 一个用VC++6.0编写的随机数生成器,与常规的算法比较有了改进。-a VC 6.0 prepared by the random number generator, with the conventional algorithm has improved.
Platform: | Size: 42163 | Author: 王熙 | Hits:

[Other resourceddzfp

Description: 斗地主发牌算法,这是参考别人的,贴出来供大家参考,其实发牌算法很简单,就是随机数的生成-Landlords licensing algorithm, which is the reference of others, putting them out for reference, in fact, the licensing algorithm is very simple. is the random number generator
Platform: | Size: 2334 | Author: andycau | Hits:

[WEB CodeLotteryNumberGenerator

Description: Lottery Number Generator的vhdl程序-Lottery Number Generator procedures for the vhdl
Platform: | Size: 1403 | Author: 刘思雄 | Hits:

[Windows Developdowncode66666

Description: 今天有点郁闷,不想干活。整理代码的时候,看到了这个好久之前写的代码,于是想整理出来供大家拍砖。XML的解析对于.Net平台那真是太简单不过了,感谢微软。但对于C++语言的XML解析就没那么容易了。有一个开源的XML4C是IBM的,功能强大,但代码大的有几M,而且对于GB2312的支持有问题,据说能解决,但可能是我天生愚钝,当初我花了2周时间也没搞定,最后放弃,自己写了一个。咦?还能跑起来,也能跨平台:)。 写这个XML解析类,以功能最简单,最实用,最常用的功能为原则,因为只能解析,查找,没有XML文档生成器。如果需要生成XMl文档,还是自己拼凑字串吧。 -today a bit depressed, do not want to work. Finishing the code, to see this a long time before writing code, so to put them down for you Bozhuan. XML for Analysis. Net platform that really is too simple, but I thank Microsoft. But for the C language XML parser will not be so easy. Have a revenue XML4C IBM and powerful, but the code with a large number M, GB2312 but for the support of a problem, was resolved, but I may be born a blunt, I spent the first two weeks did not get, abandon, wrote one. What's this? Can run, can be cross-platform :). Wrote this XML analytical categories, in order to function the simplest, most practical, the most commonly used function of the principle that only analyze, and find, not XML generator. If Generation XMl document, or your own patchwork string it.
Platform: | Size: 31364 | Author: 李冰 | Hits:

[OpenGL program2007525perlinnoise

Description: 利用vc++编的Perlin Noise随机数生成器,在这里生成的是一个噪音纹理,利用这个生成器可以构造自然景物。-use vc series Perlin Noise random number generator. Here is a generation of noise texture, use of the generator can be constructed natural landscape.
Platform: | Size: 207828 | Author: fangfang | Hits:

[Othervbsn

Description: vb序号生成器 vb序号生成器.rar-vb serial number generator vb serial number generator. Rar
Platform: | Size: 12708 | Author: zyl2024 | Hits:

[Mathimatics-Numerical algorithmsc#正态分布的随机数发生器

Description: c#正态分布的随机数发生器-normal random number generator
Platform: | Size: 1431 | Author: 王几 | Hits:

[Other resourceperiodogramestimate

Description: Generate 100 samples of a zero-mean white noise sequence with variance , by using a uniform random number generator. a Compute the autocorrelation of for . b Compute the periodogram estimate and plot it. c Generate 10 different realizations of , and compute the corresponding sample autocorrelation sequences , and . Compute the average autocorrelation sequence as and the corresponding periodogram for . d Compute and plot the average periodogram using the Bartlett method. e Comment on the results in parts (a) through (d).
Platform: | Size: 1157 | Author: 冀晗 | Hits:
« 1 2 3 4 5 6 7 89 10 11 12 13 ... 45 »

CodeBus www.codebus.net